function SafeVideo({ title, url }) { const [failed, setFailed] = React.useState(false); if (!url || failed) { return (
๐ŸŽฅ
{title || 'Video unavailable'}
This video is currently unavailable. Please check back soon.
); } return (